AuthParameters

data class AuthParameters(    val email: String,     val password: String,     val sessionDurationMinutes: UInt = DEFAULT_SESSION_TIME_MINUTES)

Data class used for wrapping parameters used with Passwords authentication

Constructors

Link copied to clipboard
fun AuthParameters(    email: String,     password: String,     sessionDurationMinutes: UInt = DEFAULT_SESSION_TIME_MINUTES)

Properties

Link copied to clipboard
val email: String

is the account identifier for the account in the form of an Email address

Link copied to clipboard
val password: String

is your private sequence of characters to authenticate

Link copied to clipboard
val sessionDurationMinutes: UInt

indicates how long the session should last before it expires